home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1994 / MacHack 1994.toast / MacHack™ 1987-1994 / MacHack™ '90 / MacHack'90 Proceedings / John Norstad / Reusable Code / Source / wstm.h < prev   
Encoding:
C/C++ Source or Header  |  1990-06-10  |  882 b   |  30 lines  |  [TEXT/MPS ]

  1. /*______________________________________________________________________
  2.  
  3.     wstm.h - Window State Module Interface.
  4.     
  5.     Copyright © 1988, 1989, 1990 Northwestern University.  Permission is 
  6.     granted to use this code in your own projects, provided you give credit 
  7.     to both John Norstad and Northwestern University in your about box or 
  8.     document.
  9. _____________________________________________________________________*/
  10.  
  11.  
  12. #ifndef __wstm__
  13. #define __wstm__
  14.  
  15. #ifndef __glob__
  16. #include "glob.h"
  17. #endif
  18.  
  19. extern void wstm_Init (WindState *windState);
  20. extern void wstm_Save (WindowPtr theWindow, WindState *windState);
  21. extern void wstm_ComputeStd (WindowPtr theWindow);
  22. extern void wstm_ComputeDef (WindowPtr theWindow, Rect *userState);
  23. extern WindowPtr wstm_Restore (Boolean dlog, short windID, Ptr wStorage,
  24.     WindState *windState);
  25. extern void wstm_Mark (WindState *windState);
  26.  
  27. #endif
  28.  
  29.  
  30.